56e3da47dbab96c89a6005c9d33b0e99e4eca3c1,src/net/fred/feedex/fragment/EntriesListFragment.java,EntriesListFragment,inflateView,#LayoutInflater#ViewGroup#Bundle#,152
Before Change
TextView footer = new TextView(container.getContext());
footer.setMinimumHeight(UiUtils.dpToPixel(90));
int footerPadding = UiUtils.dpToPixel(15);
footer.setPadding(footerPadding, footerPadding, UiUtils.dpToPixel(90), footerPadding);
footer.setClickable(true);
footer.setGravity(Gravity.CENTER_VERTICAL);
footer.setText(container.getContext().getString(R.string.tip_sentence));
After Change
int footerPadding = UiUtils.dpToPixel(10);
header.setPadding(footerPadding, footerPadding, footerPadding, footerPadding);
header.setText(R.string.tip_sentence);
header.setCompoundDrawablePadding(UiUtils.dpToPixel(5));
header.setCompoundDrawablesWithIntrinsicBounds(R.drawable.ic_action_about, 0, R.drawable.ic_action_cancel, 0);
header.setClickable(true);
header.setOnClickListener(new View.OnClickListener() {